luci-base: remove bad Unicode on clone button
authorDoug Freed <[email protected]>
Wed, 23 Apr 2025 21:43:14 +0000 (16:43 -0500)
committerDoug Freed <[email protected]>
Thu, 1 May 2025 17:42:07 +0000 (12:42 -0500)
This Unicode character is intended to be followed by 2 more characters
which are combined. It's entirely unnecessary, so just remove it.

Fixes: #7754
Signed-off-by: Doug Freed <[email protected]>
modules/luci-base/htdocs/luci-static/resources/form.js

index c9af17f1b37e1e71fa3610c3d0d8895d9b2332d8..4c7cbce69d501204b7c823c04ae81d238ab9d0ff 100644 (file)
@@ -2728,11 +2728,11 @@ const CBITableSection = CBITypedSection.extend(/** @lends LuCI.form.TableSection
 
                        dom.append(tdEl.lastElementChild,
                                E('button', {
-                                       'title': btn_title || _('Clone') + '⿻',
+                                       'title': btn_title || _('Clone'),
                                        'class': 'btn cbi-button cbi-button-neutral',
                                        'click': ui.createHandlerFn(this, 'handleClone', section_id, true),
                                        'disabled': this.map.readonly || null
-                               }, [ btn_title || _('Clone') + '⿻' ])
+                               }, [ btn_title || _('Clone') ])
                        );
                }